Add armoriq marketplace (ArmorClaude — security plugin)#66
Closed
Harihara04sudhan wants to merge 1 commit into
Closed
Add armoriq marketplace (ArmorClaude — security plugin)#66Harihara04sudhan wants to merge 1 commit into
Harihara04sudhan wants to merge 1 commit into
Conversation
ArmorIQ ships intent-based security enforcement for Claude Code at github.com/armoriq/armorClaude. The marketplace is at the repo root (.claude-plugin/marketplace.json on the main branch) and currently publishes one plugin: armorclaude. cam plugin marketplace install armoriq cam plugin install armorclaude Brief: armorclaude hooks PreToolUse / PostToolUse / SessionStart / UserPromptSubmit, registers the LLM's plan via MCP before any tool fires, mints a signed intent JWT, and blocks tool calls that drift from the registered plan. Policies are managed in natural language via the policy_update MCP tool. Optional CSRG cryptographic proofs. Central audit visible at platform.armoriq.ai. The same enforcement model also ships for OpenAI Codex (armorcodex) and GitHub Copilot CLI (armorcopilot) under their own repos. Adding just the Claude marketplace here for now since this list is curated for Claude Code plugins.
zhujian0805
pushed a commit
to Chat2AnyLLM/awesome-repo-configs
that referenced
this pull request
Jun 2, 2026
Forwarded from Chat2AnyLLM/code-assistant-manager#66 by @Harihara04sudhan — marketplace entries belong here in awesome-repo-configs rather than in code-assistant-manager. ArmorIQ intent-based security enforcement for Claude Code (also ships for OpenAI Codex and GitHub Copilot CLI under the same model). Upstream: https://github.com/armoriq/armorClaude (public, has .claude-plugin/marketplace.json, 4 stars, recently active).
Collaborator
|
Hi @Harihara04sudhan — thanks for the submission! Quick note on repo layout: I've forwarded your entry there on your behalf — see Chat2AnyLLM/awesome-repo-configs#45 (you're credited in the PR description and commit message). Once that merges, Closing this PR in favor of the awesome-repo-configs PR. Thanks for contributing — feel free to review/comment over there if anything in the description needs tweaking! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds the armoriq marketplace to `plugin_repos.json`. This is the official ArmorIQ marketplace for Claude Code security plugins, with one plugin published today (`armorclaude`).
Install command
```
cam plugin marketplace install armoriq
cam plugin install armorclaude
```
What armorclaude does
Intent-based security enforcement for Claude Code:
Plugin source: https://github.com/armoriq/armorClaude (main branch).
Schema diff
One entry added to `plugin_repos.json`:
```json
"armoriq": {
"name": "armoriq",
"description": "ArmorIQ intent-based security enforcement for Claude Code...",
"enabled": true,
"type": "marketplace",
"repoOwner": "armoriq",
"repoName": "armorClaude",
"repoBranch": "main"
}
```
Verified the marketplace.json at the source: https://github.com/armoriq/armorClaude/blob/main/.claude-plugin/marketplace.json
Note
The same enforcement model also ships for OpenAI Codex (armorcodex) and GitHub Copilot CLI (armorcopilot) under their own repos. Adding only the Claude marketplace here since this list is curated for Claude Code plugins.